runtime.hexdumper.addr (field)

10 uses

	runtime (current package)
		debuglog.go#L750: 		hd := hexdumper{addr: p}
		hexdump.go#L33: 	h := hexdumper{addr: p, mark: symMark}
		hexdump.go#L45: 	addr uintptr
		hexdump.go#L150: 	nAddr := h.addr &^ uintptr(bytesPerLine-1)
		hexdump.go#L152: 	h.dataPos = uint8(h.addr - nAddr)
		hexdump.go#L153: 	h.dataSkip = uint8(h.addr - nAddr)
		hexdump.go#L154: 	h.addr = nAddr
		hexdump.go#L198: 	h.fmtHex(lineBuf[:2*h.addrBytes], uint64(h.addr))
		hexdump.go#L231: 			addr := h.addr + uintptr(offset)
		hexdump.go#L238: 	h.addr += uintptr(bytesPerLine)